home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / rawBlockDev.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  2KB  |  41 lines

  1. /*
  2.  * rawBlockDev.h --
  3.  *
  4.  *    Declarations of routines for raw mode access to block devices.
  5.  *    This routines should be accessed thru the file system device
  6.  *    switch.
  7.  *
  8.  * Copyright 1989 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  *
  17.  * $Header: /cdrom/src/kernel/Cvsroot/kernel/dev/rawBlockDev.h,v 9.1 90/09/11 12:13:31 rab Exp $ SPRITE (Berkeley)
  18.  */
  19.  
  20. #ifndef _RAWBLOCKDEV
  21. #define _RAWBLOCKDEV
  22.  
  23. #include "user/fs.h"
  24. #include "fs.h"
  25.  
  26. extern ReturnStatus DevRawBlockDevOpen _ARGS_((Fs_Device *devicePtr,
  27.     int useFlags, Fs_NotifyToken token, int *flagsPtr));
  28. extern ReturnStatus DevRawBlockDevReopen _ARGS_((Fs_Device *devicePtr,
  29.     int refs, int writers, Fs_NotifyToken token, int *flagsPtr));
  30. extern ReturnStatus DevRawBlockDevRead _ARGS_((Fs_Device *devicePtr,
  31.     Fs_IOParam *readPtr, Fs_IOReply *replyPtr));
  32. extern ReturnStatus DevRawBlockDevWrite _ARGS_((Fs_Device *devicePtr,
  33.     Fs_IOParam *writePtr, Fs_IOReply *replyPtr));
  34. extern ReturnStatus DevRawBlockDevClose _ARGS_((Fs_Device *devicePtr,
  35.     int useFlags, int openCount, int writerCount));
  36. extern ReturnStatus DevRawBlockDevIOControl _ARGS_((Fs_Device *devicePtr,
  37.     Fs_IOCParam *ioctlPtr, Fs_IOReply *replyPtr));
  38.  
  39. #endif /* _RAWBLOCKDEV */
  40.  
  41.